home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1997, 1998, 1999 Aladdin Enterprises. All rights reserved.
-
- This file is part of AFPL Ghostscript.
-
- AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
- distributor accepts any responsibility for the consequences of using it, or
- for whether it serves any particular purpose or works at all, unless he or
- she says so in writing. Refer to the Aladdin Free Public License (the
- "License") for full details.
-
- Every copy of AFPL Ghostscript must include a copy of the License, normally
- in a plain ASCII text file named PUBLIC. The License grants you the right
- to copy, modify and redistribute AFPL Ghostscript, but only under certain
- conditions described in the License. Among other things, the License
- requires that the copyright notice and this notice be preserved on all
- copies.
- */
-
- /*$Id: zpaint.c,v 1.2 2000/09/19 19:00:55 lpd Exp $ */
- /* Painting operators */
- #include "ghost.h"
- #include "oper.h"
- #include "gspaint.h"
- #include "igstate.h"
-
- /* - fill - */
- private int
- zfill(i_ctx_t *i_ctx_p)
- {
- return gs_fill(igs);
- }
-
- /* - eofill - */
- private int
- zeofill(i_ctx_t *i_ctx_p)
- {
- return gs_eofill(igs);
- }
-
- /* - stroke - */
- private int
- zstroke(i_ctx_t *i_ctx_p)
- {
- return gs_stroke(igs);
- }
-
- /* ------ Non-standard operators ------ */
-
- /* - .fillpage - */
- private int
- zfillpage(i_ctx_t *i_ctx_p)
- {
- return gs_fillpage(igs);
- }
-
- /* <width> <height> <data> .imagepath - */
- private int
- zimagepath(i_ctx_t *i_ctx_p)
- {
- os_ptr op = osp;
- int code;
-
- check_type(op[-2], t_integer);
- check_type(op[-1], t_integer);
- check_read_type(*op, t_string);
- if (r_size(op) < ((op[-2].value.intval + 7) >> 3) * op[-1].value.intval)
- return_error(e_rangecheck);
- code = gs_imagepath(igs,
- (int)op[-2].value.intval, (int)op[-1].value.intval,
- op->value.const_bytes);
- if (code >= 0)
- pop(3);
- return code;
- }
-
- /* ------ Initialization procedure ------ */
-
- const op_def zpaint_op_defs[] =
- {
- {"0eofill", zeofill},
- {"0fill", zfill},
- {"0stroke", zstroke},
- /* Non-standard operators */
- {"0.fillpage", zfillpage},
- {"3.imagepath", zimagepath},
- op_def_end(0)
- };
-